home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr02 / zipper.zip / GETDATA.BAT < prev    next >
DOS Batch File  |  1992-04-25  |  811b  |  25 lines

  1. ECHO OFF
  2. REM clear the screen
  3. CLS
  4. REM display the information screen file
  5. TYPE GETDATA.SCR
  6. REM wait for you to respond
  7. PAUSE
  8. REM clear the screen, again
  9. CLS
  10. REM send the information contained in the autoexec.bat to the printer
  11. REM *************** change the setting on the next line if it is incorrect.
  12. COPY C:\AUTOEXEC.BAT LPT1
  13. REM send the information contained in the config.sys to the printer
  14. REM *************** change the setting on the next line if it is incorrect.
  15. COPY C:\CONFIG.SYS LPT1
  16. REM send the information from the "PATH" setting to the printer
  17. PATH >LPT1
  18. REM send the information from the CHKDSK.COM utility to the printer
  19. REM *************** chkdsk.com must be located in the "path" for this to work.
  20. CHKDSK >LPT1
  21. REM clear the screen, one last time
  22. CLS
  23. REM all done!
  24.  
  25.